home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 - Inside Community Club / Acrobat Pro 6 D.bin / installer / Data1.cab / WebPDF.deu / EXVW / 4500
Encoding:
Text File  |  2003-05-15  |  2.4 KB  |  63 lines

  1. gLabelWidth = max( zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/VerifyStoredImages' ),
  2.                    zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/OpenWeblinks' ) );
  3.  
  4. gListBoxWidth = max( zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/OncePerSession' ),
  5.                      zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/Always' ),
  6.                      zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/Never' ),
  7.                      zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/InAcrobat' ),
  8.                      zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/InWebBrowser' ) );
  9.  
  10. gSecondsWidth = zstring_width( zstring: '$$$/Dialogs/CWeb2PDFPrefsPanel/SkipSecuredPagesSeconds' );
  11.  
  12. gGapWidth = 10;
  13.  
  14. dialog( name: '$$$/Dialogs/AddItem', margin_height: 0, margin_width: 0 )
  15. {
  16.     view( dheight: gPrefsPanelHeight, dwidth: gPrefsPanelWidth, align_children: align_left )
  17.     {
  18.         cluster( name: '$$$/Dialogs/CWeb2PDFPrefsPanel/OpenGroupTitle', align_children: align_left, alignment: align_fill )
  19.         {
  20.             view( align_children: align_row )
  21.             {
  22.                 static_text( name: '$$$/Dialogs/CWeb2PDFPrefsPanel/VerifyStoredImages', alignment: align_right, width: gLabelWidth );
  23.                 popup( item_id: 'imgs', width: gListBoxWidth );
  24.             }
  25.  
  26.             view( align_children: align_row )
  27.             {
  28.                 static_text( name: '$$$/Dialogs/CWeb2PDFPrefsPanel/OpenWeblinks', alignment: align_right, width: gLabelWidth );
  29.                 popup( item_id: 'lnks', width: gListBoxWidth );
  30.             }
  31.  
  32.             gap();
  33.  
  34.             check_box( item_id: 'bkmk', name: '$$$/Dialogs/CWeb2PDFPrefsPanel/ShowBookmarks' );
  35.         }
  36.  
  37.         gap();
  38.  
  39.         cluster( name: '$$$/Dialogs/CWeb2PDFPrefsPanel/DownloadGroupTitle', align_children: align_left, alignment: align_fill )
  40.         {
  41.             static_text( name: '$$$/Dialogs/CWeb2PDFPrefsPanel/SkipSecuredPages' );
  42.  
  43.             view( align_children: align_row )
  44.             {
  45.                 gap( width: gGapWidth );
  46.                 radio( item_id: 'alws', name: '$$$/Dialogs/CWeb2PDFPrefsPanel/SkipSecuredPagesAlways' );
  47.             }
  48.  
  49.             view( align_children: align_row )
  50.             {
  51.                 gap( width: gGapWidth );
  52.                 radio( item_id: 'aftr', name: '$$$/Dialogs/CWeb2PDFPrefsPanel/SkipSecuredPagesAfter' );
  53.                 edit_text( item_id: 'scns', SpinEdit: true, width: max_digit_width() * 4 + 16 );
  54.                 static_text( name: '$$$/Dialogs/CWeb2PDFPrefsPanel/SkipSecuredPagesSeconds', alignment: align_left, width: gSecondsWidth );
  55.             }
  56.  
  57.             gap();
  58.  
  59.             button( item_id: 'cnvs', name: '$$$/Dialogs/CWeb2PDFPrefsPanel/ResetConversionSettingsBttn' );
  60.         }
  61.     }
  62. }
  63.